Overload | Description |
---|---|
ThenPromise<TPromiseResult>(FunctionResult<TPromiseResult,TResult>,Function<Exception>) | Adds succeeded and failed handlers for this promise and returns a new promise, which is fulfilled when this promise is fulfilled. |
ThenPromise<TPromiseResult>(FunctionResult<NPromise<TPromiseResult>,TResult>,Function<Exception>) | Adds succeeded and failed handlers for this promise and returns a new promise, which is fulfilled when this promise is fulfilled. |
ThenPromise<TPromiseResult>() | Adds succeeded and failed handlers for this promise and returns a new promise, which is fulfilled when this promise is fulfilled. The TResult result of this promise is cast to the TPromiseResult in the resulting promise. |